home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 8542 / 8542.xpi / chrome / lastpass.jar / content / advanced.xul < prev    next >
Extensible Markup Language  |  2010-02-14  |  2KB  |  61 lines

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <!DOCTYPE page SYSTEM "chrome://lastpass/locale/lastpass.dtd">
  4.  
  5. <page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  6.     id="LPAdvanced"
  7.     onload="load_advanced(document, window)"
  8.     xmlns:html="http://www.w3.org/1999/xhtml">
  9.     
  10.     <script type="application/x-javascript" src="chrome://lastpass/content/getlp.js" />
  11.     <script type="application/x-javascript" src="chrome://lastpass/content/prefs.js" />
  12.     
  13.     <groupbox id="advanced"><caption id="AdvancedCaption" />
  14.         <vbox id="splitter1">
  15.             <hbox id="autoautoBox">
  16.                 <checkbox id="autoauto" oncommand="fix_fields();"/>
  17.                 <textbox id="autoautoVal" type="number" size="4" min="10" max="9999"/>
  18.             </hbox>
  19.             <checkbox id="warninsecureforms" />
  20.             <checkbox id="dontfillautocompleteoff" />
  21.             
  22.             <hbox id="pollServerBox">
  23.                 <checkbox id="pollServer" oncommand="fix_fields();"/>
  24.                 <textbox id="pollServerVal" type="number" size="4" min="5" max="9999"/>
  25.             </hbox>
  26.             
  27.             <hbox id="clearClipboardBox">
  28.                 <checkbox id="clearClipboard" oncommand="fix_fields();"/>
  29.                 <textbox id="clearClipboardSecsVal" type="number" size="4" min="1" max="9999"/>
  30.             </hbox>
  31.             
  32.             <hbox id="openloginstartBox">
  33.                 <checkbox id="openloginstart"/>
  34.             </hbox>
  35.             
  36.             <hbox id="capturenewformfillBox">
  37.                 <checkbox id="capturenewformfill"/>
  38.             </hbox>
  39.             
  40.             <hbox id="storeLostPWOTPBox">
  41.                 <checkbox id="storeLostPWOTP"/>
  42.             </hbox>
  43.             
  44.             <spacer height="10"/>
  45.             
  46.             <hbox>
  47.                 <label id="languagetxt" control="lplanguage"/>
  48.                 <menulist id="lplanguage">
  49.                     <menupopup id="lplanguagepopup">
  50.                     </menupopup>
  51.                 </menulist>
  52.                 <hbox>
  53.                     <button id='opentranslate' onclick="LP.lpbaseopen('translate.php?fromff=1'); parent.window.close();"/>
  54.                 </hbox>
  55.             </hbox>
  56.             
  57.         </vbox>
  58.     </groupbox>
  59.     
  60. </page>
  61.